home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / _SQLite_ErrCode.au3 < prev    next >
Text File  |  2007-09-08  |  323b  |  9 lines

  1. #include <SQLite.au3>
  2. #include <SQLite.dll.au3>
  3.  
  4. _SQLite_Startup()
  5. _SQLite_Open()
  6. If $SQLITE_OK <> _SQLite_Exec(-1,"CREATE TABLE test ('a', 'b);") Then _ ; a Quote is missing
  7.     MsgBox(0,"SQLite Error","Error Code: " & _SQLite_ErrCode() & @CR & "Error Message: " & _SQLite_ErrMsg())
  8. _SQLite_Close()
  9. _SQLite_Shutdown()